projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
239c87a
)
(get_minibuffer): Call Fkill_all_local_variables.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 18 Sep 1994 08:45:56 +0000
(08:45 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 18 Sep 1994 08:45:56 +0000
(08:45 +0000)
src/minibuf.c
patch
|
blob
|
history
diff --git
a/src/minibuf.c
b/src/minibuf.c
index b443ddcc740676253365f58c2a503ae66e820f48..5f866d52381b6719cd4b0f7c7c324be94782bb06 100644
(file)
--- a/
src/minibuf.c
+++ b/
src/minibuf.c
@@
-338,7
+338,10
@@
get_minibuffer (depth)
XCONS (tail)->car = buf;
}
else
- reset_buffer (XBUFFER (buf));
+ {
+ reset_buffer (XBUFFER (buf));
+ Fkill_all_local_variables (buf);
+ }
return buf;
}